Skip to main content

Error codes

LetsGetChecked uses conventional HTTP response codes to indicate the success or failure of an API request. Errors include the Problem-Detail payload where appropriate. In general, the following code classes are used:

CodeDescriptionExamples
2xxSuccessful Indicates success
  • 200: OK. Standard response for successful HTTP requests.
  • 202: Accepted.
3xxRedirected Requires further action to complete the request.304: Not Modified.
4xxRequest error Indicates a client error with the information provided.
  • 400: Bad request.
  • 401: Authentication issues.
  • 404: A required parameter cannot be found.
  • 406: Not acceptable, where the file format is not supported.
  • 409: The order that is being sent already exists.
  • 410: Unsupported version of the API.
  • 415: Unsupported media type.
5xxServer error Indicates an error with LetsGetChecked servers.
  • 500: Internal server error.
  • 503: Service unavailable.